They look like this
map(.x, .f, ..., .progress = FALSE)
library(tidyverse) example_function <- function(a, b) { return(b/a) } df <- data.frame(a = 1:5, b = 11:15) df
a b 1 1 11 2 2 12 3 3 13 4 4 14 5 5 15
pmap(.l = df, .f = example_function)
[[1]] [1] 11 [[2]] [1] 6 [[3]] [1] 4.333333 [[4]] [1] 3.5 [[5]] [1] 3
render_standard_pages.R